home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 173 / 173.xpi / chrome / gm-notifier.jar / content / gm-notifier / about.xul next >
Extensible Markup Language  |  2009-09-28  |  2KB  |  50 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <?xml-stylesheet href="chrome://gm-notifier/content/gm-notifier.css" type="text/css"?>
  4.  
  5. <!DOCTYPE dialog SYSTEM "chrome://gm-notifier/locale/gm-notifier.dtd">
  6. <dialog buttons="accept"
  7.         title="&gm-notifier.name;"
  8.         id="notifier-about-dialog"
  9.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  10.         onload="startup()">
  11.  
  12.   <script>
  13.     function startup() {
  14.       if (document.getElementById("translator").value != "") {
  15.         document.getElementById("translator-box").collapsed = false;
  16.       }
  17.     }
  18.   </script>
  19.  
  20.   <vbox id="notifier-about" flex="1">
  21.     <hbox style="padding:0px; margin:0px;">
  22.       <vbox style="padding:0px; margin:0px;">
  23.         <label style="padding-left:4px; min-width:250px; margin:0px;" value="&gm-notifier.name;" class="notifier-about-name"/>
  24.         <hbox>
  25.           <label value="¬ifier-about-version.label;"/>
  26.           <label class="notifier-about-version" value="0.6.4.1" />
  27.         </hbox>
  28.       </vbox>
  29.       <spacer flex="1"/>
  30.       <vbox>
  31.         <image style="padding:3px;" src="chrome://gm-notifier/content/gm-logo.png" />
  32.         <spacer flex="1"/>
  33.       </vbox>
  34.     </hbox>
  35.  
  36.     <label value="¬ifier-about-author.label;" class="notifier-about-title"/>
  37.     <hbox align="center">
  38.       <label value="Doron Rosenberg (gmn.feedback@gmail.com)"/>
  39.      </hbox>
  40.  
  41.     <vbox id="translator-box" collapsed="true">
  42.       <label id="translator" value="¬ifier-about-translator.label;" class="notifier-about-title"/>
  43.       <label value="¬ifier-about-translator.name;"/>
  44.     </vbox>
  45.  
  46.     <description style="margin-top:10px;">¬ifier-about-legal.label;</description>
  47.   </vbox>
  48.   <separator class="groove" id="notifier-about-about-separator"/>
  49. </dialog>
  50.